home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
program
/
wdj0797.zip
/
ZOLMAN.ZIP
/
MYSPLI~1.H
< prev
next >
Wrap
C/C++ Source or Header
|
1996-11-18
|
2KB
|
62 lines
// MySplitterView.h : interface of the CMySplitterView class
//
/////////////////////////////////////////////////////////////////////////////
class CMySplitterView : public CFormView
{
protected: // create from serialization only
CMySplitterView();
DECLARE_DYNCREATE(CMySplitterView)
public:
//{{AFX_DATA(CMySplitterView)
enum{ IDD = IDD_MYSPLITTER_FORM };
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// Attributes
public:
CMySplitterDoc* GetDocument();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMySplitterView)
public:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnPrint(CDC* pDC, CPrintInfo*);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CMySplitterView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CMySplitterView)
// NOTE - the ClassWizard will add and remove member functions here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in MySplitterView.cpp
inline CMySplitterDoc* CMySplitterView::GetDocument()
{ return (CMySplitterDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////